home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- if not %2.==. goto OKAY
- goto USAGE
- :OKAY
- :: This utility gathers copies a group of files into a specified directory.
- ::
- :: %1 holds the destination path for the group of files
- :: %2 is mandatory and holds the file filter
- :: %3 - %9 hold additional file filtering info criteria
- ::
- ffg /qm %2 "/ecopy %%p\%%n %1" %3 %4 %5 %6 %7 %8 %9
- @echo off
- goto END
- :USAGE
- echo.
- echo USAGE: %0 DestPath [DriveSpec:]FileMask [FFG options]
- echo.
- echo "%0" gathers copies a group of files into a specified directory.
- echo The user is given an opportunity to confirm for each file.
- echo.
- :END
-